home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1994 / MacHack 1994.toast / MacHack™ 1987-1994 / MacHack™ '92 / Hacks ’92 / Procedure Call Logger / BP_EP.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-02  |  351 b   |  21 lines  |  [TEXT/MPS ]

  1. /*
  2.     For implementing your own trace routines, you should implement
  3.     a version of this routine and link it in in front of BP_EP.c.
  4.     This allows you to control when to enter the debugger.
  5.     
  6.     Author:    Marshall Clow
  7.     
  8.     Log:
  9.         Jun 02, 1992    new file.
  10. */
  11.  
  12. #ifdef    __BP_EP__
  13. #define    __BP_EP__
  14.  
  15. #include <Types.h>
  16.  
  17. Boolean    BreakHere ( void );
  18.  
  19.  
  20. #endif    __BP_EP__
  21.